gtk/gtkrecentchooser.c: Avoid C99isms
authorChun-wei Fan <fanchunwei@src.gnome.org>
Fri, 19 Jul 2013 10:38:27 +0000 (18:38 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Fri, 19 Jul 2013 10:38:27 +0000 (18:38 +0800)
commitd7b68278561f8846fab94c3ef974a89785bce666
tree8b235079fcd585dc81665b2e00ca2448f68eaa7a
parentce30d16da1882e4241c621021fd769e5644b730c
gtk/gtkrecentchooser.c: Avoid C99isms

Declare variables at the top to the block.

G_GNUC_BEGIN_IGNORE_DEPRECATIONS and G_GNUC_END_IGNORE_DEPRECATIONS with
a ';' at the end is still considered a statement, even if these macros
expand to nothing, which C89 compilers don't really like (oddly speaking)-
but this is life.
gtk/gtkrecentchooser.c